Let's make your **Options page** look like native **Chrome settings** (like `chrome://settings`). That means: minimal, clean, lots of whitespace, subtle shadows, and Roboto font with light grays and blues. --- ## 🧠Overview of Chrome Settings Aesthetic - **Font**: Roboto, same as popup - **Spacing**: Generous padding, consistent vertical rhythm - **Headers**: Medium-bold, gray - **Input controls**: Flat look, slight rounding - **Colors**: Background `#f1f3f4`, text `#3c4043`, primary blue `#1a73e8` - **Toggle switch styles**, checkboxes, and subtle section dividers --- ## 1. **CSS for Chrome-like Settings Page** ```css /* Base font and layout */ body { font-family: 'Roboto', Arial, sans-serif; font-size: 14px; color: #3c4043; background-color: #f1f3f4; margin: 0; padding: 24px; min-width: 90vw; height: fit-content; } /* Section block */ .settings-section { background: #fff; border-radius: 8px; padding: 16px 20px; margin-bottom: 20px; box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15); } /* Section titles */ .settings-section h2 { font-size: 16px; font-weight: 500; margin-bottom: 12px; color: #202124; } /* Labels */ .settings-label { display: flex; justify-content: space-between; align-items: center; margin: 12px 0; } /* Checkbox + Text */ .settings-label input[type="checkbox"] { transform: scale(1.2); accent-color: #1a73e8; } /* Toggle Switch Base */ .switch { position: relative; display: inline-block; width: 36px; height: 20px; } .switch input { opacity: 0; width: 0; height: 0; } /* Slider */ .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #dadce0; transition: 0.3s; border-radius: 999px; } .slider:before { position: absolute; content: ""; height: 14px; width: 14px; left: 3px; top: 3px; background-color: white; transition: 0.3s; border-radius: 50%; } /* Checked State */ input:checked + .slider { background-color: #1a73e8; } input:checked + .slider:before { transform: translateX(16px); } /* Text Input */ .settings-label input[type="text"] { padding: 6px 10px; border: 1px solid #dadce0; border-radius: 4px; font-size: 14px; width: 100%; max-width: 200px; } /* Save button */ button.save-btn { background-color: #1a73e8; color: white; border: none; padding: 8px 16px; border-radius: 4px; font-weight: 500; cursor: pointer; } button.save-btn:hover { background-color: #1765cc; } ``` --- ## 2. **HTML Structure for the Options Page** ```html